home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation',
- 'Copyright': u'Copyright (c) 2003-2004 Corel Corporation All rights reserved.',
- 'Description': u'',
- 'Host': u'Paint Shop Pro',
- 'Host Version': u'8.10'
- }
-
- def Preset_ColorAdjustHSL():
- return {
- 'HSL': {
- 'Colorize': App.Constants.Boolean.false,
- 'Master': (120,-60,-30),
- 'MasterColorize': (0,0,0),
- 'Red': (0,0,0,315,345,15,45),
- 'Green': (0,0,0,75,105,135,165),
- 'Blue': (0,0,0,195,225,255,285),
- 'Cyan': (0,0,0,135,165,195,225),
- 'Magenta': (0,0,0,255,285,315,345),
- 'Yellow': (0,0,0,15,45,75,105)
- }
- }
-
- def Do(Environment):
- # Color Adjust HSL
- App.Do( Environment, 'ColorAdjustHSL', Preset_ColorAdjustHSL())
-
-